home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / Manuels & Misc / Assembly / AOA.ZIP / CH02 / OPTIMIZE / OPTIMZP.DPR < prev    next >
Encoding:
Text File  |  1995-12-18  |  270 b   |  15 lines

  1. program Optimzp;
  2.  
  3. uses
  4.   Forms,
  5.   Optimize in 'OPTIMIZE.PAS' {EqnOptimize},
  6.   Aboutu in 'ABOUTU.PAS' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TEqnOptimize, EqnOptimize);
  12.   Application.CreateForm(TAboutBox, AboutBox);
  13.   Application.Run;
  14. end.
  15.